projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c09655b
)
(lisp-mode-variables): In comment-start-skip,
author
Richard M. Stallman
<rms@gnu.org>
Sun, 24 Apr 1994 08:33:40 +0000
(08:33 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 24 Apr 1994 08:33:40 +0000
(08:33 +0000)
reject semicolon after a backslash.
lisp/emacs-lisp/lisp-mode.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/lisp-mode.el
b/lisp/emacs-lisp/lisp-mode.el
index a488b954422b75e9a87cd7ec5aa7ceab551f468a..566a1053555bdbc9b38bc4577fe5a7d490d13b57 100644
(file)
--- a/
lisp/emacs-lisp/lisp-mode.el
+++ b/
lisp/emacs-lisp/lisp-mode.el
@@
-100,7
+100,7
@@
(make-local-variable 'comment-start)
(setq comment-start ";")
(make-local-variable 'comment-start-skip)
- (setq comment-start-skip "
;+
*")
+ (setq comment-start-skip "
\\(^;\\|[^\\];\\)
*")
(make-local-variable 'comment-column)
(setq comment-column 40)
(make-local-variable 'comment-indent-function)